createThreeWayCall

abstract fun createThreeWayCall(firstCallId: String?, secondCallId: String?, callInterface: OutgoingCallCreateInterface?)

This method creates 3-Way Call (a.k.a Ad-Hoc Conference Call). 3-way call basically merges the two call sessions (A-B and A-C) between 3 parties into one conference call. This API should be called from the party, which is in both sessions, to initiate the "join" operation.

Since

4.4.8

Parameters

firstCallId

specifies the first call which will be joined to ThreeWay Call

secondCallId

specifies the second call which will be joined to ThreeWay Call

callInterface

base interface for outgoing call creation events


abstract fun createThreeWayCall(firstCallId: String?, secondCallId: String?, callApplication: CallApplicationListener?, callInterface: OutgoingCallCreateInterface?)

Deprecated

CallApplicationListener is no longer used. Switch to CallService#createThreeWayCall(String, String, OutgoingCallCreateInterface) instead

This method creates 3-Way Call (a.k.a Ad-Hoc Conference Call). 3-way call basically merges the two call sessions (A-B and A-C) between 3 parties into one conference call. This API should be called from the party, which is in both sessions, to initiate the "join" operation.

Since

4.4.8

Parameters

firstCallId

specifies the first call which will be joined to ThreeWay Call

secondCallId

specifies the second call which will be joined to ThreeWay Call

callApplication

application listener for call service.

callInterface

base interface for outgoing call creation events

See also